Microsoft .NET Framework
Installing Microsoft .NET 3.5 during KACE K2000 Imaging processes as a Post Installation Task.find the sxs folder on the Windows DVD and copy that to a temp folder such as C:\ITTEMP\Sources\ins… Read More
By default, Windows 10 does not include .NET 3.5 and for some reason, after you join the computer to a domain, you are no longer able to add it through the GUI from the add/remove Windows featu… Read More
We currently deploy 1.1 with Windows 7 X64 using SCCM . Use command-line (dotnetfx.exe /q:a /c:"install.exe /qb /l") the uninstall string is MsiExec.exe /X{CB2F7EDD-9D1F-43C1-90FC-4F52EAE172A1}… Read More
Here is a method to enable .Net 3.5 on Windows 8 with a powershell script. this method is usefull when you deploy windows 8 with SCCM (this script can be used as part of a task sequence) becau… Read More
Installing .NET 1.1 on Windows 7 x64 Microsoft did not include the .NET 1.1 Framework in Windows 7. As a result, any application wanting to use the .NET Framework 1.1 will be unable to do so … Read More
.NET Framework 3.5 SP1 is built in to Windows 7. social.msdn.microsoft.com stackoverflow.com Read More
You can deploy .NET 3.5 on Windows 8 machines by calling DISM in two ways an online option DISM /Online /Enable-Feature /FeatureName:NetFx3 /All OR a source media option DISM /Online /Ena… Read More
dotNetFx40_Full_x86_x64.exe /q /norestart /ChainingPackage ADMINDEPLOYMENT Download the full package at this link -> http://www.microsoft.com/fr-fr/download/details.aspx?id=17718 Read More
Doing some lab testing for ConfigMgr 2012. I wanted to install App-V 5.0 Beta but it needed the .NET Framework 4 Full as a prereq. So, created the .NET Framework 4 Full application with the f… Read More
  All switches are optional. /CEIPconsent †Optionally send anonymous feedback to improve the customer experience. /chainingpackage <name> †Optionally … Read More
  All switches are optional. /CEIPconsent â Optionally send anonymous feedback to improve the customer experience. /chainingpackage <name> â Optionally record the name of a pac… Read More
This relates to Windows XP: If you do have only .NET 2 installed on your target machines, the package wants to install the RGB9Rast_x86.msi as it prepares the installer for later versions of .… Read More
If you like the MSI approach: - This example is for x86 machines, I assume you can use the same method for x64 systems (not tested) - Please note that your system meets the right Prerequisites… Read More
If you like the MSI approach: - This example is for x86 machines, I assume you can use the same method for x64 systems (not tested) - Please note that your system meets the right Prerequisites… Read More
The above post about "Blocking Issues" when running the setup.exe from the extracted files is respectfully, incorrect. You must add an extra switch, either "/x86" or "/x64" in addition to the o… Read More
We run this to install it: dotNetFx40_Full_x86_x64.exe /q /norestart /log %temp%\dotNetFx40.log If you run dotNetFx40_Full_x86_x64.exe /?, it will extract the setup files into a temporary dir… Read More
With this package, you cannot extract the files out by running dotNetFx40_Full_x86_x64.exe and then looking for the setup.exe where the files were extracted. If you just run setup.exe, you'll … Read More
We run this to install it: dotNetFx40_Full_x86_x64.exe /q /norestart /log %temp%\dotNetFx40.log If you run dotNetFx40_Full_x86_x64.exe /?, it will extract the setup files into a temporary dir… Read More
Deployment of Microsoft .NET Framework 2.0 SP2 x86 using Active Directory. Microsoft Windows Installer 3.1 must already be deployed. 1. Download dotnetfx35.exe from http://download.microsoft.… Read More
Found on Aaron Stebner's Blog That means that if you want to install the .NET Framework 2.0 and create a log file in a path with spaces you need to use a command line like the following: do… Read More
My goal was to Slipstream .NET Framework 1.1 in my Unattended XP / SP3 I did the following steps and it works FINE! 1. download the .NET framework v1.1 re-distribution package 2. then you ne… Read More
dotnetfx.exe /q:a /t:%TMP% /c:"msiexec.exe /i %TMP%\netfx.msi /qn" Read More
To deploy only the MSI without a command line do the following: 1. Extract the contents of the setup package - dotnetfx.exe /t:c:\temp /c (or you can substitute any path of your choosing… Read More